-- set intersection of {a,b,c,d} and {b,d,e,f,g}:
intersection(split |abcd>, split |bdefg>)
|b> + |d>
-- fuzzy set intersection example:
intersection(3|a> + 1.2|b>, 3.5|a> + 0.9|b> + 5.13|c>)
3|a> + 0.900000|b>
-- sequence intersection example:
intersection( ssplit |abcde>, ssplit |abc>)
|a> . |b> . |c>